From ca636dbc6e3be5aed08261cf967f3f2efc9c379d Mon Sep 17 00:00:00 2001 From: Ewan Mellor Date: Thu, 14 Dec 2006 14:50:35 +0000 Subject: [PATCH] Have a 1GiB disk rather than 1MiB, for a slightly more sensible test. Signed-off-by: Ewan Mellor --- tools/libxen/test/test_bindings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/libxen/test/test_bindings.c b/tools/libxen/test/test_bindings.c index 0c47305a09..d2c54ac3ea 100644 --- a/tools/libxen/test/test_bindings.c +++ b/tools/libxen/test/test_bindings.c @@ -339,7 +339,7 @@ static void create_new_vm(xen_session *session) .name_label = "MyRootFS", .name_description = "MyRootFS description", .sr = &sr_record, - .virtual_size = (1 << 20) / 512, + .virtual_size = (1 << 21), // 1GiB / 512 bytes/sector .sector_size = 512, .type = XEN_VDI_TYPE_SYSTEM, .sharable = false, -- 2.30.2